* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* General styles */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf6f6;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Header */
  header {
    background-color: #00c2f2;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  header .title {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  
  header .title img {
    max-height: 60px;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1); /* Fondo sutil */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Sombra debajo del texto */
  }
  
  .nav-links a:hover {
    background-color: #ea5898;
    border-radius: 5px;
    transform: scale(1.05); /* Efecto de ampliación */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al pasar el mouse */
  }
  
  /* Dropdown styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ea5898;
    width: 200px;
    z-index: 999;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    transition: background-color 0.3s ease;
  }
  
  .dropdown-content a:hover {
    background-color: #efed3f;
    color: #333;
  }
  
  /* Ensuring the submenu is positioned correctly */
  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu > .dropdown-content {
    top: 0;
    left: 100%;
    margin-left: 1px;
    border-radius: 0 10px 10px 0;
  }
  
  /* Mobile Menu styles */
  .menu-toggle {
    display: none;
    cursor: pointer;
    background: #ea5898;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fdf6f6;
    transition: all 0.3s ease-in-out;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #5bb9eb;
      margin-top: 1rem;
    }
  
    nav ul li {
      width: 100%;
    }
  
    nav ul.show {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #5bb9eb;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
    .nav-links a {
      padding: 15px;
      font-size: 18px;
    }
  }
  
  /* Estilos para el contenido principal */
  .content {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  
  .content section {
    margin-bottom: 30px;
  }
  
  .content h2 {
    color: #ea5898;
    margin-bottom: 15px;
  }
  
  .content p, .content ul {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  .content ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  .footer {
    background-color: #5bb9eb;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ea5898;
    margin-top: 3rem;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  .whatsapp:hover {
    color: #25d366;
  }
  
  .instagram:hover {
    color: #e1306c;
  }
  
  .facebook:hover {
    color: #1877f2;
  }
  .youtube:hover {
    color: #ff0000;
  }
  
  @media (max-width: 768px) {
    .footer p {
      font-size: 0.9rem;
    }
  
    .social-icons a {
      font-size: 1.4rem;
    }
  }
    